home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / SOURCE.BIN / TypeNotSupported.java < prev    next >
Encoding:
Java Source  |  1997-06-19  |  523 b   |  18 lines

  1. /*
  2.  * TypeNotSupported.java   1.0   12 Jan 1997
  3.  *
  4.  * Copyright (c) 1996 Krumel & Associates, Inc.  All Rights Reserved.
  5.  *
  6.  * This software is provided as is.  Krumel & Associates shall not be liable
  7.  * for any damages suffered by licensee as a result of using, modifying or
  8.  * distributing this software or its derivatives.
  9.  */
  10.  
  11. package symantec.itools.db.awt;
  12.  
  13. public class TypeNotSupported extends Exception {
  14.     public TypeNotSupported() {}
  15.     public TypeNotSupported(String msg) { super(msg); }
  16. }
  17.  
  18.